-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Streamline deployment of GESIS acceptance server #3178
base: main
Are you sure you want to change the base?
Conversation
Jupyter Hub and Binder Hub uses ingressClassName instead of className.
as indicated in https://helm.sh/docs/chart_best_practices/templates/#comments-yaml-comments-vs-template-comments to pass Helm lint.
because it is already present.
75b3ca0
to
9823278
Compare
This is ready for review. If it looks good, please merge. The @arnim this does not include the custom GESIS page. This will go in another PR. |
def6a62
to
ec006f7
Compare
I think this is fine- though would you mind minimising the changes to the templates, or alternatively put the reformatting into a separate PR and ideally add whatever formatter you're using to pre-commit? |
I will do at the end of the month. Busy with a couple of things. |
This is related with #2797 and #3087.
SSH access to GESIS Kubernetes cluster requires access to GESIS VPN. This makes the use of GitHub actions challenge.
Different than #3090, this PR assumes that the GESIS Kubernetes is configured. GESIS Kubernetes runs on bare-metal and is configured following MetalLB + Ingress NGINX Controller.
GESIS operates a on-premise GitLab. This PR addes a GitLab CI/CD configuration to deploy the mybinder.org Helm chart to the GESIS Kubernetes using GitLab agent for Kubernetes.
After #3159, any the commit on
main
is pushed to GESIS GitLab and will trigger a new deployment of this mybinder.org Helm chart.At the moment, the Helm chart deploy fails with
My understanding of the error is that GESIS Kubernetes already has a Ingress Class
nginx
that was configured for MetalLB + Ingress NGINX Controller but the Binder Hub and Jupyter Hub upstream Helm chart tries to create the same Ingress Classnginx
and this operation is blocked. Is my understanding correct? @manics @yuvipanda @minrk